<rss version="2.0" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/"><channel><title>DTR Technology</title><link>http://www.dtrtechnology.com</link><description>RSS feeds for DTR Technology</description><ttl>60</ttl><item><comments>http://www.dtrtechnology.com/KnowledgeBase/tabid/99/ctl/ArticleView/mid/470/articleId/42/How-to-change-your-password-on-your-website.aspx#Comments</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.dtrtechnology.com/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=99&amp;ModuleID=470&amp;ArticleID=42</wfw:commentRss><trackback:ping>http://www.dtrtechnology.com/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=42&amp;PortalID=0&amp;TabID=99</trackback:ping><title>How to change your password on your website.</title><link>http://www.dtrtechnology.com/KnowledgeBase/tabid/99/ctl/ArticleView/mid/470/articleId/42/How-to-change-your-password-on-your-website.aspx</link><description>&lt;p&gt;&amp;#160;If you desire to change the password that you use to log onto your website  perform the following steps.&lt;/p&gt;
&lt;ul&gt;
    &lt;li&gt;Once logged onto the website you can locate your user name next to the  logout option. It will be a Hyperlink to your personal settings.&amp;#160;&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
    &lt;li&gt;That will take you to the “Manage Profile” page. Once there you will want to  select or click the link for “Manage Password”.&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
    &lt;li&gt;That will take you to the page that you can enter your new password. You  will need to enter your current Password and then the new password as well as  confirm the new password by entering it again. Finally click the Link that says  “Change Password”.&amp;#160;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;That's all there is to it.&lt;/p&gt;</description><dc:creator>Dan Rowe</dc:creator><pubDate>Tue, 11 Jan 2011 12:54:00 GMT</pubDate><guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:42</guid></item><item><comments>http://www.dtrtechnology.com/KnowledgeBase/tabid/99/ctl/ArticleView/mid/470/articleId/26/Module-verses-a-Class.aspx#Comments</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.dtrtechnology.com/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=99&amp;ModuleID=470&amp;ArticleID=26</wfw:commentRss><trackback:ping>http://www.dtrtechnology.com/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=26&amp;PortalID=0&amp;TabID=99</trackback:ping><title>Module verses a Class</title><link>http://www.dtrtechnology.com/KnowledgeBase/tabid/99/ctl/ArticleView/mid/470/articleId/26/Module-verses-a-Class.aspx</link><description>&lt;p align="left"&gt;A Visual Basic 6 Module was a popular tool to create a library (if you will) of global routines and variables that you would want to access&amp;#160; from multiple places in your code. It allow programmers to be able to maintain and access routines in one place. Basically it can be viewed as a global class available to all other forms and classes. No instantiation needed, it is already instantiated and global. Very convenient to use.&lt;/p&gt;  &lt;p&gt;VB6 was primarily a single-user desktop windows applications development tool. Yes, with the proper level of skill and patience you could use it more advanced purposes.&amp;#160; In a single user environment, a shared global module is not a problem. Use of a module in a single user VB.Net application is still not a problem for the same reason. But in asp there is a problem. If you consider what might happen if you use a module in an ASP.Net application being used&amp;#160; by multiple users you might note that a variable declared at the module level is now a global variable that can is accessed by every instance that touches it without clearing the prior setting. For instance&amp;#160; 'UserName' if not reset will be the prior user name set when the function was called. This was not really a problem in VB6 window applications but could be in VB.net. And potentially a tremendous security issues as incoming users take on whatever security permissions were enabled by the last client that set the 'UserName' variable.&lt;/p&gt;  &lt;p&gt;So the use of a class while a little more code is required is a better way for ASP code to have a standard “library” of routines that you want to call from many locations in your code. A class will contain your methods (routines) properties (variables) and events. VB6 Had the class file also and was and is used extensively in desktop applications. But as pointed out above in ASP code there is a definite need to secure access to variables for each instance. Classes allow instantiating an individual instance for each use and that keeps each instance unaware of the others.&amp;#160;&amp;#160;&amp;#160;&amp;#160; &lt;/p&gt;  &lt;p&gt;See this &lt;a href="http://msdn.microsoft.com/en-us/library/2s9w552e(VS.71).aspx" target="_blank"&gt;article&lt;/a&gt; that describes a class in MS terminology and this &lt;a href="http://msdn.microsoft.com/en-us/library/8k0zafxb(VS.71).aspx" target="_blank"&gt;article&lt;/a&gt; that details different project file types.&lt;/p&gt;  &lt;p&gt;Here are a couple of links to easy tutorials for class creations &lt;a href="http://www.startvbdotnet.com/oop/class.aspx" target="_blank"&gt;1&lt;/a&gt; &amp;amp; &lt;a href="http://msdn.microsoft.com/en-us/library/ms973814.aspx" target="_blank"&gt;2&lt;/a&gt;&lt;/p&gt;&lt;div class="d_itc_f" style="clear:both;height:11px;"&gt;&lt;script src="/DesktopModules/itcMetaPost/js/m.js" type="text/javascript"&gt;&lt;/script&gt;&lt;/div&gt;</description><dc:creator>Dan Rowe</dc:creator><pubDate>Mon, 30 Mar 2009 05:04:00 GMT</pubDate><guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:26</guid></item><item><comments>http://www.dtrtechnology.com/KnowledgeBase/tabid/99/ctl/ArticleView/mid/470/articleId/25/Dated-Comments-in-your-Code.aspx#Comments</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.dtrtechnology.com/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=99&amp;ModuleID=470&amp;ArticleID=25</wfw:commentRss><trackback:ping>http://www.dtrtechnology.com/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=25&amp;PortalID=0&amp;TabID=99</trackback:ping><title>Dated Comments in your Code</title><link>http://www.dtrtechnology.com/KnowledgeBase/tabid/99/ctl/ArticleView/mid/470/articleId/25/Dated-Comments-in-your-Code.aspx</link><description>So yesterday I was asked Why I use the format of year month day in my code comments such as DTR 090318.  So my Brain starts spinning as I say to myself...self, why do I do that....</description><dc:creator>Dan Rowe</dc:creator><pubDate>Wed, 18 Mar 2009 17:57:17 GMT</pubDate><guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:25</guid></item><item><comments>http://www.dtrtechnology.com/KnowledgeBase/tabid/99/ctl/ArticleView/mid/470/articleId/10/Cool-App-to-connect-2-PCs-Remotely.aspx#Comments</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.dtrtechnology.com/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=99&amp;ModuleID=470&amp;ArticleID=10</wfw:commentRss><trackback:ping>http://www.dtrtechnology.com/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=10&amp;PortalID=0&amp;TabID=99</trackback:ping><title>Cool App to connect 2 PC's Remotely</title><link>http://www.dtrtechnology.com/KnowledgeBase/tabid/99/ctl/ArticleView/mid/470/articleId/10/Cool-App-to-connect-2-PCs-Remotely.aspx</link><description>&lt;p&gt;&amp;nbsp;Looking for a &lt;u&gt;&lt;strong&gt;simple &lt;/strong&gt;&lt;/u&gt;to use and &lt;strong&gt;&lt;u&gt;secure&lt;/u&gt;&lt;/strong&gt; screen sharing application?&amp;nbsp;Like &lt;u&gt;&lt;strong&gt;Free&lt;/strong&gt;&lt;/u&gt;? Well click here to learn about one that fits the description.&lt;/p&gt;</description><dc:creator>Dan Rowe</dc:creator><pubDate>Tue, 28 Aug 2007 14:10:00 GMT</pubDate><guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:10</guid></item><item><comments>http://www.dtrtechnology.com/KnowledgeBase/tabid/99/ctl/ArticleView/mid/470/articleId/9/You-can-copy-the-message-from-that-dialog.aspx#Comments</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.dtrtechnology.com/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=99&amp;ModuleID=470&amp;ArticleID=9</wfw:commentRss><trackback:ping>http://www.dtrtechnology.com/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=9&amp;PortalID=0&amp;TabID=99</trackback:ping><title>You can copy the message from that dialog!</title><link>http://www.dtrtechnology.com/KnowledgeBase/tabid/99/ctl/ArticleView/mid/470/articleId/9/You-can-copy-the-message-from-that-dialog.aspx</link><description>&lt;p&gt;I must admit this is one of those things that I learned a while ago but forgot. While researching something on a recent project a ran into this &lt;a href="http://weblogs.asp.net/chuckop/archive/2004/04/08/110153.aspx"&gt;article&lt;/a&gt; that gives great details on how you can copy the message from a windows based message box. You know the ones you can't highlight and copy? This is even better you don't even need to highlight the text simply type Control+C and then paste it to your Support email. &lt;img alt="" src="/Providers/HtmlEditorProviders/Fck/FCKeditor/editor/images/smiley/msn/wink_smile.gif" /&gt;&lt;/p&gt;
&lt;p&gt;Check out the &lt;a href="http://weblogs.asp.net/chuckop/archive/2004/04/08/110153.aspx"&gt;article &lt;/a&gt;for details.&lt;/p&gt;</description><dc:creator>Dan Rowe</dc:creator><pubDate>Wed, 25 Jul 2007 20:01:00 GMT</pubDate><guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:9</guid></item><item><comments>http://www.dtrtechnology.com/KnowledgeBase/tabid/99/ctl/ArticleView/mid/470/articleId/8/That-annoying-Read-View-in-MS-Word.aspx#Comments</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.dtrtechnology.com/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=99&amp;ModuleID=470&amp;ArticleID=8</wfw:commentRss><trackback:ping>http://www.dtrtechnology.com/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=8&amp;PortalID=0&amp;TabID=99</trackback:ping><title>That annoying "Read View' in MS Word</title><link>http://www.dtrtechnology.com/KnowledgeBase/tabid/99/ctl/ArticleView/mid/470/articleId/8/That-annoying-Read-View-in-MS-Word.aspx</link><description>&lt;p&gt;Ever get tired of having to go to the menu to select the normal view when you open a word document someone has emailed you just so you can read it. Or maybe you did not know you could do that and now that you do you would like to know how to change it so this does not happen in the first place?&lt;/p&gt;
&lt;p&gt;There is a simple solution.&lt;/p&gt;</description><dc:creator>Dan Rowe</dc:creator><pubDate>Fri, 13 Apr 2007 20:34:00 GMT</pubDate><guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:8</guid></item><item><comments>http://www.dtrtechnology.com/KnowledgeBase/tabid/99/ctl/ArticleView/mid/470/articleId/7/Turn-Zone-Alarm-Free-version-Junk-Mail-Filter-OFF.aspx#Comments</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.dtrtechnology.com/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=99&amp;ModuleID=470&amp;ArticleID=7</wfw:commentRss><trackback:ping>http://www.dtrtechnology.com/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=7&amp;PortalID=0&amp;TabID=99</trackback:ping><title>Turn Zone Alarm Free version Junk Mail Filter OFF!!</title><link>http://www.dtrtechnology.com/KnowledgeBase/tabid/99/ctl/ArticleView/mid/470/articleId/7/Turn-Zone-Alarm-Free-version-Junk-Mail-Filter-OFF.aspx</link><description>&lt;p&gt;Do you find the junk mail filter added to your outlook application to be not only annoying but a bit presumptuous of ZA to install? Having a hard time figuring out how to get rid of it? Here is a solution.&lt;o:p&gt;&lt;/o:p&gt;&lt;/p&gt;</description><dc:creator>Dan Rowe</dc:creator><pubDate>Fri, 30 Mar 2007 09:01:00 GMT</pubDate><guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:7</guid></item><item><comments>http://www.dtrtechnology.com/KnowledgeBase/tabid/99/ctl/ArticleView/mid/470/articleId/5/What-file-is-that.aspx#Comments</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.dtrtechnology.com/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=99&amp;ModuleID=470&amp;ArticleID=5</wfw:commentRss><trackback:ping>http://www.dtrtechnology.com/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=5&amp;PortalID=0&amp;TabID=99</trackback:ping><title>What file is that? </title><link>http://www.dtrtechnology.com/KnowledgeBase/tabid/99/ctl/ArticleView/mid/470/articleId/5/What-file-is-that.aspx</link><description>Here is a couple of links that may help you find out what a program is or what program would open a particular file.</description><dc:creator>Dan Rowe</dc:creator><pubDate>Mon, 12 Feb 2007 15:23:00 GMT</pubDate><guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:5</guid></item><item><comments>http://www.dtrtechnology.com/KnowledgeBase/tabid/99/ctl/ArticleView/mid/470/articleId/4/Keyboard-Short-Cuts.aspx#Comments</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.dtrtechnology.com/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=99&amp;ModuleID=470&amp;ArticleID=4</wfw:commentRss><trackback:ping>http://www.dtrtechnology.com/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=4&amp;PortalID=0&amp;TabID=99</trackback:ping><title>Keyboard Short Cuts</title><link>http://www.dtrtechnology.com/KnowledgeBase/tabid/99/ctl/ArticleView/mid/470/articleId/4/Keyboard-Short-Cuts.aspx</link><description>&lt;p&gt;Here is a great list to some Keyboard shortcuts that may save you some time. Thanks to Hongkiat.com for putting the list together. They are certainly handy!&lt;/p&gt;
&lt;p&gt;&lt;a href="javascript:void(window.open('http://www.hongkiat.com/blog/2006/12/18/100-keyboard-shortcuts-windows/','','resizable=no,location=no,menubar=no,scrollbars=no,status=no,toolbar=no,fullscreen=no,dependent=no'))"&gt;Keyboard Shortcuts&lt;/a&gt;&lt;/p&gt;</description><dc:creator>Dan Rowe</dc:creator><pubDate>Mon, 12 Feb 2007 13:28:00 GMT</pubDate><guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:4</guid></item><item><comments>http://www.dtrtechnology.com/KnowledgeBase/tabid/99/ctl/ArticleView/mid/470/articleId/3/Comaptibility-pack-for-office-2007-for-older-versions.aspx#Comments</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.dtrtechnology.com/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=99&amp;ModuleID=470&amp;ArticleID=3</wfw:commentRss><trackback:ping>http://www.dtrtechnology.com/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=3&amp;PortalID=0&amp;TabID=99</trackback:ping><title>Comaptibility pack for office 2007 for older versions. </title><link>http://www.dtrtechnology.com/KnowledgeBase/tabid/99/ctl/ArticleView/mid/470/articleId/3/Comaptibility-pack-for-office-2007-for-older-versions.aspx</link><description>Do you have a need to open documents created with office 2007?&amp;nbsp;&amp;nbsp;</description><dc:creator>Dan Rowe</dc:creator><pubDate>Fri, 09 Feb 2007 10:08:00 GMT</pubDate><guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:3</guid></item><item><comments>http://www.dtrtechnology.com/KnowledgeBase/tabid/99/ctl/ArticleView/mid/470/articleId/1/Templates-get-your-FREE-office-templates.aspx#Comments</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.dtrtechnology.com/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=99&amp;ModuleID=470&amp;ArticleID=1</wfw:commentRss><trackback:ping>http://www.dtrtechnology.com/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=1&amp;PortalID=0&amp;TabID=99</trackback:ping><title>Templates get your FREE office templates  </title><link>http://www.dtrtechnology.com/KnowledgeBase/tabid/99/ctl/ArticleView/mid/470/articleId/1/Templates-get-your-FREE-office-templates.aspx</link><description>&lt;p&gt;If you work with MS Office you probably know that you can create just about any solution you may need using one of the office products. But &lt;a href="http://www.dtrtechnology.com/Services/OfficeApps/tabid/61/Default.aspx"&gt;who&lt;/a&gt; has the time to learn how to use all the features and tricks. Well if you want to be a &amp;quot;Do It yourself Office Guru&amp;quot; or you simply want to see just how many things you can do with MS Office take a look at these templates that Microsoft has. There are&amp;nbsp;so many templates to use in your all your office products that can make your life easier. The links in this post will take you there.&amp;nbsp;&lt;/p&gt;</description><dc:creator>Dan Rowe</dc:creator><pubDate>Thu, 08 Feb 2007 10:01:00 GMT</pubDate><guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:1</guid></item><item><comments>http://www.dtrtechnology.com/KnowledgeBase/tabid/99/ctl/ArticleView/mid/470/articleId/2/What-is-the-US-Energy-Policy-Act-and-how-does-it-impact-you.aspx#Comments</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.dtrtechnology.com/DesktopModules/DnnForge%20-%20NewsArticles/RssComments.aspx?TabID=99&amp;ModuleID=470&amp;ArticleID=2</wfw:commentRss><trackback:ping>http://www.dtrtechnology.com/DesktopModules/DnnForge%20-%20NewsArticles/Tracking/Trackback.aspx?ArticleID=2&amp;PortalID=0&amp;TabID=99</trackback:ping><title>What is the U.S. Energy Policy Act and how does it impact you? </title><link>http://www.dtrtechnology.com/KnowledgeBase/tabid/99/ctl/ArticleView/mid/470/articleId/2/What-is-the-US-Energy-Policy-Act-and-how-does-it-impact-you.aspx</link><description>The U.S. Energy Policy Act of 2005, passed by the U.S. Congress July, 2005. Does this effect you? Basically Daylight savings time in the us will be extended by about 4 weeks starting in 2007. Unless updates are made to your system it is possible that the time zone settings for your computer's system clock may be incorrect during this four week period.&amp;nbsp;</description><dc:creator>Dan Rowe</dc:creator><pubDate>Wed, 07 Feb 2007 10:01:00 GMT</pubDate><guid isPermaLink="false">f1397696-738c-4295-afcd-943feb885714:2</guid></item></channel></rss>